home *** CD-ROM | disk | FTP | other *** search
/ Alumni Directory: Alumni…oday Phi Delta Theta 2015 / Alumni Today Phi Delta Theta 2015.iso / pc / Help / whdata / whgdata.js < prev    next >
Encoding:
JavaScript  |  2005-09-19  |  411 b   |  26 lines

  1. //    WebHelp 5.10.001
  2. var gIEA = new Array();
  3. function aGE(sName, sDef)
  4. {
  5.     var len = gIEA.length;
  6.     gIEA[len] = new gloEntry(sName, sDef);
  7. }
  8.  
  9. function gloEntry(sName, sDef) 
  10. {
  11.     this.sName = sName;
  12.     this.sDef = sDef;
  13.     this.nNKOff = 0;
  14. }
  15.  
  16. function window_OnLoad()
  17. {
  18.     if (parent && parent != this) {
  19.         if (parent.putData) 
  20.         {
  21.             parent.putData(gIEA);
  22.         }
  23.     }
  24. }
  25.  
  26. window.onload = window_OnLoad;